mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 12:43:12 +03:00
29 lines
No EOL
653 B
JavaScript
29 lines
No EOL
653 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
es6: true
|
|
},
|
|
extends: ['eslint:recommended', 'plugin:prettier/recommended'],
|
|
parserOptions: {
|
|
'sourceType': 'commonjs',
|
|
"ecmaVersion": 'latest'
|
|
},
|
|
rules: {
|
|
indent: 'off',
|
|
semi: ['error', 'always'],
|
|
'arrow-body-style': ["error", "as-needed"],
|
|
"prettier/prettier": [
|
|
"error", {
|
|
"singleQuote": true,
|
|
"parser": "flow"
|
|
}
|
|
],
|
|
},
|
|
overrides: [
|
|
{
|
|
'files': ['*/*.js'],
|
|
},
|
|
],
|
|
'ignorePatterns': ['.eslintrc.js'],
|
|
}; |