code/.eslintrc.js

23 lines
342 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-08-01 18:32:24 +00:00
'object-curly-spacing': ['error', 'always'],
2021-06-21 04:59:24 +00:00
},
};