persea/config/.eslint.defaults.js

24 lines
505 B
JavaScript
Raw Normal View History

2020-12-23 12:46:52 -06:00
const config = {
globals: {
process: true,
window: true,
},
ignorePatterns: [
'/*',
'!/src',
],
rules: {
'babel/object-curly-spacing': 'off',
'brace-style': ['error', 'stroustrup'],
2021-01-24 19:06:34 -06:00
'jsx-a11y/label-has-associated-control': 'off',
2020-12-23 12:46:52 -06:00
'no-bitwise': ['error', {int32Hint: true}],
'no-plusplus': 'off',
'no-shadow': 'off',
'no-underscore-dangle': 'off',
'padded-blocks': ['error', {classes: 'always'}],
yoda: 'off',
},
};
module.exports = config;