@deg-skeletor/plugin-rollup
Version:
A Skeletor plugin to bundle Javascript modules.
182 lines • 5.52 kB
Plain Text
{
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"binaryLiterals": true,
"blockBindings": true,
"defaultParams": true,
"forOf": true,
"generators": true,
"objectLiteralComputedProperties": true,
"objectLiteralDuplicateProperties": true,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"octalLiterals": true,
"regexUFlag": true,
"regexYFlag": true,
"templateStrings": true,
"unicodeCodePointEscapes": true,
"jsx": false,
"experimentalObjectRestSpread": true
}
},
"rules": {
"comma-dangle": 2,
"no-cond-assign": 2,
"no-console": 1,
"no-constant-condition": 2,
"no-control-regex": 0,
"no-debugger": 1,
"no-dupe-keys": 2,
"no-empty": 2,
"no-empty-class": 0,
"no-ex-assign": 0,
"no-extra-boolean-cast": 2,
"no-extra-parens": 2,
"no-extra-semi": 2,
"no-func-assign": 2,
"no-inner-declarations": 2,
"no-invalid-regexp": 2,
"no-irregular-whitespace": 1,
"no-negated-in-lhs": 2,
"no-obj-calls": 2,
"no-regex-spaces": 2,
"no-sparse-arrays": 2,
"no-unreachable": 2,
"use-isnan": 2,
"valid-jsdoc": 2,
"valid-typeof": 2,
"block-scoped-var": 2,
"complexity": 0,
"consistent-return": 1,
"curly": 2,
"default-case": 2,
"dot-notation": 2,
"eqeqeq": 1,
"guard-for-in": 1,
"no-alert": 1,
"no-caller": 2,
"no-div-regex": 0,
"no-else-return": 2,
"no-empty-label": 0,
"no-eq-null": 1,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-fallthrough": 2,
"no-floating-decimal": 2,
"no-implied-eval": 2,
"no-iterator": 2,
"no-labels": 2,
"no-lone-blocks": 1,
"no-loop-func": 2,
"no-multi-spaces": 1,
"no-multi-str": 1,
"no-native-reassign": 2,
"no-new": 1,
"no-new-func": 2,
"no-new-wrappers": 2,
"no-octal": 0,
"no-octal-escape": 0,
"no-process-env": 0,
"no-proto": 0,
"no-redeclare": 0,
"no-return-assign": 2,
"no-script-url": 2,
"no-self-compare": 2,
"no-sequences": 0,
"no-unused-expressions": 0,
"no-void": 0,
"no-warning-comments": 1,
"no-with": 0,
"radix": 1,
"vars-on-top": 1,
"wrap-iife": 1,
"yoda": 1,
"strict": 0,
"no-catch-shadow": 0,
"no-shadow": 0,
"no-shadow-restricted-names": 0,
"no-undef": 0,
"no-undef-init": 0,
"no-undefined": 0,
"no-unused-vars": 2,
"no-use-before-define": 0,
"brace-style": 2,
"camelcase": 2,
"comma-spacing": 0,
"comma-style": [2, "last"],
"consistent-this": 1,
"eol-last": 0,
"func-names": 0,
"func-style": 0,
"key-spacing": 2,
"max-nested-callbacks": 0,
"new-cap": 0,
"new-parens": 0,
"no-array-constructor": 0,
"no-inline-comments": 1,
"no-lonely-if": 1,
"no-mixed-spaces-and-tabs": 1,
"no-multiple-empty-lines": 0,
"no-nested-ternary": 1,
"no-new-object": 2,
"semi-spacing": 2,
"no-spaced-func": 2,
"no-ternary": 0,
"no-trailing-spaces": 1,
"no-underscore-dangle": 0,
"no-wrap-func": 0,
"one-var": [1, "never"],
"operator-assignment": 0,
"padded-blocks": 0,
"quote-props": 0,
"quotes": [2, "single"],
"semi": 2,
"sort-vars": 0,
"space-before-function-paren": [0, "never"],
"keyword-spacing": 0,
"space-before-blocks": 2,
"object-curly-spacing": 2,
"array-bracket-spacing": 2,
"computed-property-spacing": 2,
"space-in-parens": 2,
"space-infix-ops": 2,
"space-unary-ops": 2,
"spaced-comment": 1,
"wrap-regex": 2,
"no-var": 2,
"generator-star-spacing": ["error", {"before": true, "after": false}],
"arrow-body-style": 1,
"arrow-parens": 0,
"arrow-spacing": [2, {"before": true, "after": true}],
"constructor-super": 0,
"no-class-assign": 0,
"no-confusing-arrow": 0,
"no-const-assign": 2,
"no-dupe-class-members": 0,
"no-duplicate-imports": 2,
"no-new-symbol": 0,
"no-useless-computed-key": 2,
"no-useless-constructor": 2,
"no-useless-rename": [2, {"ignoreDestructuring": false, "ignoreImport": false, "ignoreExport": false}],
"object-shorthand": 0,
"prefer-arrow-callback": 0,
"prefer-const": 2,
"prefer-destructuring": 1,
"prefer-numeric-literals": 0,
"prefer-rest-params": 1,
"prefer-spread": 1,
"prefer-template": 2,
"require-yield": 0,
"rest-spread-spacing": [2, "never"],
"sort-imports": 0,
"symbol-description": 0,
"template-curly-spacing": [2, "never"],
"yield-star-spacing": [2, {"before": true, "after": true}],
}
}