mirror of
https://github.com/urbit/shrub.git
synced 2024-11-28 05:22:27 +03:00
14 lines
297 B
JavaScript
14 lines
297 B
JavaScript
module.exports = {
|
|
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', {}]
|
|
}
|
|
};
|