2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-06-27 13:11:01 -06:00

28 lines
482 B
Plaintext
Raw Permalink Normal View History

{
2022-01-14 22:27:43 +01:00
"root": true,
2017-12-05 11:51:36 +01:00
"rules": {
"strict": 0,
"no-console": 0,
"quotes": [
2017-12-05 11:56:56 +01:00
"error",
"single"
2017-12-05 11:51:36 +01:00
],
"semi": [
2017-12-05 11:56:56 +01:00
"error",
2017-12-05 11:51:36 +01:00
"always"
],
"comma-dangle": [
"error",
"always-multiline"
]
2017-12-05 11:51:36 +01:00
},
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2018
},
2017-12-05 11:51:36 +01:00
"extends": "eslint:recommended"
}