Skip to content

Commit e8bd43e

Browse files
style: quotes consistency
1 parent bbfc04b commit e8bd43e

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

templates/node-angular/eslint.config.mjs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import globals from 'globals';
2-
import js from '@eslint/js';
3-
import nodePlugin from 'eslint-plugin-n';
4-
import tseslintPlugin from '@typescript-eslint/eslint-plugin';
5-
import tseslintParser from '@typescript-eslint/parser';
1+
import globals from "globals";
2+
import js from "@eslint/js";
3+
import nodePlugin from "eslint-plugin-n";
4+
import tseslintPlugin from "@typescript-eslint/eslint-plugin";
5+
import tseslintParser from "@typescript-eslint/parser";
66

77
export default [
88
{
9-
files: ['src/**/*.js','src/**/*.ts'],
9+
files: ["src/**/*.js","src/**/*.ts"],
1010
languageOptions: {
1111
ecmaVersion: 2022,
1212
sourceType: "module",
@@ -15,20 +15,20 @@ export default [
1515
ecmaFeatures: {
1616
modules: true
1717
},
18-
ecmaVersion: '2022',
19-
project: './tsconfig.json',
18+
ecmaVersion: "2022",
19+
project: "./tsconfig.json",
2020
},
2121
globals: {
2222
...globals.browser,
2323
}
2424
},
2525
plugins: {
26-
'@typescript-eslint': tseslintPlugin
26+
"@typescript-eslint": tseslintPlugin
2727
},
2828
rules: {
2929
...js.configs.recommended.rules,
30-
...tseslintPlugin.configs['eslint-recommended'].overrides[0].rules,
31-
...tseslintPlugin.configs['recommended'].rules,
30+
...tseslintPlugin.configs["eslint-recommended"].overrides[0].rules,
31+
...tseslintPlugin.configs["recommended"].rules,
3232
}
3333
},
3434
{

0 commit comments

Comments
 (0)