bigbluebutton-Github/bigbluebutton-html5/.eslintrc.js

32 lines
593 B
JavaScript
Raw Normal View History

2017-06-03 02:55:23 +08:00
module.exports = {
2021-04-10 02:02:18 +08:00
extends: 'airbnb',
parserOptions: {
ecmaVersion: 2020,
},
plugins: [
'react',
'jsx-a11y',
'import',
],
env: {
es6: true,
node: true,
browser: true,
meteor: true,
jasmine: true,
},
rules: {
'no-underscore-dangle': 0,
'import/extensions': [2, 'never'],
'import/no-absolute-path': 0,
'import/no-unresolved': 0,
'import/no-extraneous-dependencies': 1,
'react/prop-types': 1,
'jsx-a11y/no-access-key': 0,
'react/jsx-props-no-spreading': 'off',
},
globals: {
browser: 'writable',
},
2017-06-03 02:55:23 +08:00
};