Skip to content

Commit

Permalink
style: use tabs also in hidden configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
screendriver committed Oct 9, 2022
1 parent 0ff96fc commit 947c321
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 53 deletions.
26 changes: 13 additions & 13 deletions .c8rc.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"all": true,
"lines": 100,
"functions": 100,
"statements": 100,
"branches": 100,
"instrument": true,
"extension": [".ts"],
"include": ["src/**/*"],
"exclude": ["src/index.ts"],
"reporter": ["lcov", "text-summary", "json"],
"check-coverage": true,
"reportDir": "./target/coverage",
"tempDirectory": "./target/c8_output"
"all": true,
"lines": 100,
"functions": 100,
"statements": 100,
"branches": 100,
"instrument": true,
"extension": [".ts"],
"include": ["src/**/*"],
"exclude": ["src/index.ts"],
"reporter": ["lcov", "text-summary", "json"],
"check-coverage": true,
"reportDir": "./target/coverage",
"tempDirectory": "./target/c8_output"
}
44 changes: 22 additions & 22 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018,
"project": "./tsconfig.base.json"
},
"extends": [
"eslint:recommended",
"prettier",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:prettier/recommended",
"plugin:ava/recommended"
],
"plugins": ["@typescript-eslint", "ava"],
"env": {
"node": true
},
"rules": {
"@typescript-eslint/explicit-function-return-type": "off"
}
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018,
"project": "./tsconfig.base.json"
},
"extends": [
"eslint:recommended",
"prettier",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:prettier/recommended",
"plugin:ava/recommended"
],
"plugins": ["@typescript-eslint", "ava"],
"env": {
"node": true
},
"rules": {
"@typescript-eslint/explicit-function-return-type": "off"
}
}
36 changes: 18 additions & 18 deletions .renovaterc.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"extends": ["config:base"],
"labels": ["renovate"],
"rebaseStalePrs": false,
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"nvm": {
"enabled": false
},
"packageRules": [
{
"depTypeList": ["dependencies", "devDependencies"],
"updateTypes": ["minor", "patch"],
"automerge": true,
"automergeType": "branch"
}
]
"extends": ["config:base"],
"labels": ["renovate"],
"rebaseStalePrs": false,
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"nvm": {
"enabled": false
},
"packageRules": [
{
"depTypeList": ["dependencies", "devDependencies"],
"updateTypes": ["minor", "patch"],
"automerge": true,
"automergeType": "branch"
}
]
}

0 comments on commit 947c321

Please sign in to comment.