-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #614 from PacificYield/cleanup
refactor: cleaning unused files
- Loading branch information
Showing
47 changed files
with
42 additions
and
2,304 deletions.
There are no files selected for viewing
13 changes: 7 additions & 6 deletions
13
.github/config/commitlint.config.js → .github/config/commitlint.config.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
const RuleConfigSeverity = require("@commitlint/types").RuleConfigSeverity; | ||
import { RuleConfigSeverity } from '@commitlint/types'; | ||
|
||
const Configuration = { | ||
/* | ||
* Resolve and load @commitlint/config-conventional from node_modules. | ||
* Referenced packages must be installed | ||
*/ | ||
extends: ["@commitlint/config-conventional"], | ||
extends: ['@commitlint/config-conventional'], | ||
/* | ||
* Resolve and load conventional-changelog-atom from node_modules. | ||
* Referenced packages must be installed | ||
*/ | ||
parserPreset: "conventional-changelog-conventionalcommits", | ||
parserPreset: 'conventional-changelog-conventionalcommits', | ||
/* | ||
* Resolve and load @commitlint/format from node_modules. | ||
* Referenced package must be installed | ||
*/ | ||
formatter: "@commitlint/format", | ||
formatter: '@commitlint/format', | ||
/* | ||
* Any rules defined here will override rules from @commitlint/config-conventional | ||
*/ | ||
rules: { | ||
"type-empty": [RuleConfigSeverity.Error, "never"], | ||
'type-empty': [RuleConfigSeverity.Error, 'never'], | ||
}, | ||
}; | ||
|
||
module.exports = Configuration; | ||
export default Configuration; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
module.exports = { | ||
istanbulReporter: ["html", "lcov"], | ||
providerOptions: { | ||
mnemonic: process.env.MNEMONIC, | ||
}, | ||
skipFiles: ["test"], | ||
mocha: { | ||
fgrep: "[skip-on-coverage]", | ||
invert: true, | ||
}, | ||
export const istanbulReporter = ["html", "lcov"]; | ||
export const providerOptions = { | ||
mnemonic: process.env.MNEMONIC, | ||
}; | ||
export const skipFiles = ["test"]; | ||
export const mocha = { | ||
fgrep: "[skip-on-coverage]", | ||
invert: true, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.