spiegel-keyman/.eslintrc.cjs
Marc Durdin ac39427f60 chore(developer): add eslint devDependency for kmc
Adds eslint, effectively disabled, to infrastructure for all of kmc.

Note that eslintNoNodeImports.js will be used in the next commit, for
verifying #8644.
2023-04-25 13:44:56 +07:00

16 lines
484 B
JavaScript

module.exports = {
root: true,
env: {
browser: true,
es2021: true,
node: true,
},
// TODO: we need to move to the following, but this gets us started with infrastructure without breaking our build
// extends: [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended"],
extends: ["plugin:@typescript-eslint/eslint-recommended"],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
};