{ "linterOptions": { "exclude": ["./src/client/northstar/**", "**/*.js"] }, "rules": { "no-return-await": true, "no-string-literal": true, "prefer-object-spread": true, "prefer-for-of": true, "no-unnecessary-type-assertion": true, "triple-equals": true, "prefer-const": true, "no-unnecessary-callback-wrapper": true, "class-name": true, "arrow-return-shorthand": true, "semicolon": [ true, "always" ], "curly": [ true, "ignore-same-line" ], "no-tautology-expression": true, "unnecessary-constructor": true // "trailing-comma": [ // true, // { // "multiline": "always", // "singleline": "never" // } // ], // "ordered-imports": true // "quotemark": [ // true, // "double", // "jsx-double", // "avoid-template", // "avoid-escape" // ], // "object-literal-shorthand": true, // "object-literal-sort-keys": true, // "align": [ // true, // "parameters", // "arguments", // "statements", // "members", // "elements" // ], // "no-void-expression": [ // true, // "ignore-arrow-function-shorthand" // ], // "no-non-null-assertion": true, // "no-var-keyword": true, // "no-var-requires": true, }, "defaultSeverity": "warning", "jsRules": { } }