generator-chisel
generator-chisel copied to clipboard
How can I edit eslint rules?
Hello,
How can I set some additional rules in eslint for our project?
I need set:
max-nesting-depth: 4
Thanks.
@jakub300 can you please advise on this?
Hi, looks like you're trying to edit stylelint rules. In generated project there is stylelint.config.js file, you can edit it and add your rule, for example:
module.exports = {
extends: ['stylelint-config-chisel'],
rules: {
'max-nesting-depth': 4,
},
};