mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
21 lines
289 B
JavaScript
21 lines
289 B
JavaScript
module.exports = {
|
|
"extends": "standard",
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"es6": true,
|
|
"node": true,
|
|
"jest/globals": true
|
|
},
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
2
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
]
|
|
},
|
|
"plugins": ["jest"]
|
|
};
|