Skip to content

Commit dbe2aa9

Browse files
authored
Merge pull request #306 from americano212/improve-config-enviroment
refactor: integrate enviroment value in config
2 parents 3d0c12d + 26ef98c commit dbe2aa9

File tree

10 files changed

+12176
-12234
lines changed

10 files changed

+12176
-12234
lines changed

.prettierrc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
{
2-
"singleQuote": true,
3-
"trailingComma": "all",
4-
"printWidth": 100,
5-
"semi": true,
6-
"endOfLine": "lf"
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all",
4+
"printWidth": 100,
5+
"semi": true,
6+
"endOfLine": "lf"
77
}

.vscode/settings.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
{
2-
"eslint.format.enable": true
3-
}
1+
{
2+
"eslint.format.enable": true,
3+
"files.eol": "\n"
4+
}

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const compat = new FlatCompat({
1717

1818
export default [
1919
{
20-
ignores: ['./eslint.eslintrc.mjs'],
20+
ignores: ['./eslint.eslintrc.mjs', '**/dist/', '**/node_modules/'],
2121
},
2222
...compat.extends(
2323
'plugin:@typescript-eslint/recommended',

0 commit comments

Comments
 (0)