Skip to content

Commit 195a171

Browse files
committed
chore: 🔧 update config files
1 parent a129b3f commit 195a171

File tree

3 files changed

+55
-49
lines changed

3 files changed

+55
-49
lines changed

.eslintrc.js

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,49 @@
11
module.exports = {
22
root: true,
3-
parser: "@typescript-eslint/parser",
3+
parser: '@typescript-eslint/parser',
44
extends: [
5-
"airbnb-base",
6-
"plugin:@typescript-eslint/recommended",
7-
"prettier",
8-
"plugin:prettier/recommended",
5+
'airbnb-base',
6+
'plugin:@typescript-eslint/recommended',
7+
'prettier',
8+
'plugin:prettier/recommended',
99
],
1010
parserOptions: {
1111
ecmaVersion: 2020,
12-
sourceType: "module",
12+
sourceType: 'module',
1313
},
1414
env: {
1515
node: true,
1616
jest: true,
1717
},
1818
rules: {
19-
"eol-last": ["error", "always"],
20-
"no-plusplus": ["error", { allowForLoopAfterthoughts: true }],
21-
"import/extensions": ["off"],
22-
"import/prefer-default-export": ["off"],
23-
"simple-import-sort/imports": "warn",
24-
"simple-import-sort/exports": "warn",
25-
"@typescript-eslint/no-empty-interface": ["off"],
26-
"@typescript-eslint/explicit-function-return-type": ["off"],
19+
'eol-last': ['error', 'always'],
20+
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
21+
'import/extensions': ['off'],
22+
'import/prefer-default-export': ['off'],
23+
'simple-import-sort/imports': 'warn',
24+
'simple-import-sort/exports': 'warn',
25+
'@typescript-eslint/no-empty-interface': ['off'],
26+
'@typescript-eslint/explicit-function-return-type': ['off'],
2727
},
2828
overrides: [
2929
{
30-
files: ["src/__mocks__/.*", "**/*.spec.ts"],
30+
files: ['src/__mocks__/.*', '**/*.spec.ts'],
3131
rules: {
32-
"import/no-extraneous-dependencies": [
33-
"error",
32+
'import/no-extraneous-dependencies': [
33+
'error',
3434
{ devDependencies: true },
3535
],
36-
"@typescript-eslint/no-empty-function": ["off"],
37-
"@typescript-eslint/no-non-null-assertion": ["off"],
36+
'@typescript-eslint/no-empty-function': ['off'],
37+
'@typescript-eslint/no-non-null-assertion': ['off'],
3838
},
3939
},
4040
],
4141
settings: {
42-
"import/resolver": {
42+
'import/resolver': {
4343
node: {
44-
extensions: [".js", ".ts"],
44+
extensions: ['.js', '.ts'],
4545
},
4646
},
4747
},
48-
plugins: ["simple-import-sort"],
48+
plugins: ['simple-import-sort'],
4949
};

.releaserc.yaml

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
branches:
2-
- main
3-
- name: development
4-
prerelease: alpha
5-
channel: alpha
2+
- main
3+
- name: development
4+
prerelease: alpha
5+
channel: alpha
66

77
plugins:
8-
- - "@semantic-release/commit-analyzer"
9-
- preset: angular
10-
releaseRules:
11-
- scope: no-release
12-
release: false
13-
- type: build
14-
release: patch
15-
- type: chore
16-
release: patch
17-
- type: ci
18-
release: false
19-
- type: docs
20-
release: false
21-
- type: style
22-
release: patch
23-
- type: refactor
24-
release: patch
25-
- type: test
26-
release: patch
27-
- - "@semantic-release/release-notes-generator"
28-
- - "@semantic-release/npm"
29-
- - "@semantic-release/github"
8+
- - "@semantic-release/commit-analyzer"
9+
- preset: angular
10+
releaseRules:
11+
- scope: no-release
12+
release: false
13+
- type: build
14+
release: patch
15+
- type: chore
16+
release: patch
17+
- type: ci
18+
release: false
19+
- type: docs
20+
release: false
21+
- type: style
22+
release: patch
23+
- type: refactor
24+
release: patch
25+
- type: test
26+
release: patch
27+
- - "@semantic-release/release-notes-generator"
28+
- - "@semantic-release/npm"
29+
- - "@semantic-release/github"

package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@
1414
"audit-ci": "audit-ci",
1515
"semantic-release": "semantic-release"
1616
},
17-
"keywords": [],
17+
"keywords": [
18+
"nextjs",
19+
"runtime",
20+
"env",
21+
"runtime env",
22+
"next-runtime-env"
23+
],
1824
"author": "Expatfile.tax LLC",
1925
"license": "MIT",
2026
"repository": {

0 commit comments

Comments
 (0)