34 lines
697 B
JavaScript
34 lines
697 B
JavaScript
const side = require('./side');
|
|
|
|
const config = {
|
|
globals: {
|
|
process: true,
|
|
AVOCADO_CLIENT: true,
|
|
AVOCADO_SERVER: true,
|
|
},
|
|
rules: {
|
|
'babel/object-curly-spacing': 'off',
|
|
'brace-style': ['error', 'stroustrup'],
|
|
'no-bitwise': ['error', {int32Hint: true}],
|
|
'no-plusplus': 'off',
|
|
'no-underscore-dangle': 'off',
|
|
'padded-blocks': ['error', {classes: 'always'}],
|
|
yoda: 'off',
|
|
},
|
|
settings: {
|
|
'import/resolver': {
|
|
webpack: {
|
|
config: `${__dirname}/webpack.config.js`,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
if ('client' === side) {
|
|
config.rules['jsx-a11y/label-has-associated-control'] = [2, {
|
|
'assert': 'either',
|
|
}];
|
|
}
|
|
|
|
module.exports = config;
|