mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-24 17:14:04 +02:00
21 lines
430 B
Plaintext
21 lines
430 B
Plaintext
{
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module"
|
|
},
|
|
extends: [
|
|
"plugin:import/errors"
|
|
],
|
|
rules: {
|
|
"no-invalid-this": 0,
|
|
"sort-imports": ["error", {
|
|
"ignoreCase": false,
|
|
"ignoreMemberSort": false,
|
|
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
|
|
}]
|
|
},
|
|
globals: {
|
|
"iD": false,
|
|
}
|
|
}
|