mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2026-08-27 11:24:49 +00:00
23 lines
530 B
JavaScript
23 lines
530 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
ecmaVersion: "latest",
|
|
sourceType: "module",
|
|
project: "./tsconfig.json",
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
plugins: ["@typescript-eslint"],
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:@typescript-eslint/recommended-type-checked",
|
|
"plugin:@typescript-eslint/stylistic-type-checked",
|
|
],
|
|
ignorePatterns: ["dist"],
|
|
env: {
|
|
node: true,
|
|
es2022: true,
|
|
},
|
|
};
|