code/.eslintrc.js

22 lines
293 B
JavaScript
Raw Normal View History

2021-06-21 04:59:24 +00:00
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'xo-space',
],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
2021-07-12 08:23:02 +00:00
ecmaFeatures: {
jsx: true,
},
2021-06-21 04:59:24 +00:00
},
plugins: [
],
rules: {
2021-07-12 08:23:02 +00:00
'capitalized-comments': ['off'],
2021-06-21 04:59:24 +00:00
},
};