1234567891011121314151617181920212223 |
- {
- "extends": "airbnb-base",
- "plugins": [
- "import"
- ],
- "parserOptions": {
- "sourceType": "script",
- "impliedStrict": false,
- "ecmaFeatures": {
- "experimentalObjectRestSpread": false
- }
- },
- "rules": {
- "strict": [ 2, "global" ],
- "comma-dangle": [ 2, {
- "arrays": "only-multiline",
- "objects": "only-multiline",
- "functions": "never"
- }],
- "linebreak-style": [ 0 ]
- }
- }
|