urbit/pkg/interface/.eslintrc.js

14 lines
297 B
JavaScript
Raw Normal View History

2020-08-06 07:15:56 +03:00
module.exports = {
2021-05-25 05:33:42 +03:00
extends: '@urbit',
env: {
'jest': true
},
rules: {
// Because we use styled system, and use
// the convention of each prop on a new line
// we probably shouldn't keep this on
'max-lines-per-function': ['off', {}],
'max-lines': ['off', {}]
2021-05-25 05:33:42 +03:00
}
};