mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
Adds eslint, effectively disabled, to infrastructure for all of kmc. Note that eslintNoNodeImports.js will be used in the next commit, for verifying #8644.
16 lines
484 B
JavaScript
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",
|
|
},
|
|
};
|