-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(eslint): eslint, prettier, standard-version & commitzen configur…
…ation EX-2050
- Loading branch information
1 parent
302e8f2
commit d1d809f
Showing
15 changed files
with
8,639 additions
and
4,731 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
shims-tsx.d.ts | ||
shims-vue.d.ts | ||
jest.setup.ts | ||
**/*.js |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
{ "extends": ["plugin:@empathy/x/all"] } |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
main.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module.exports = { | ||
header: '# X Components Archetype', | ||
...require('@empathy/eslint-plugin-x/standard-version-config') | ||
} |
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,9 +1,18 @@ | ||
# X Components Archetype | ||
|
||
Welcome to the X Components Archetype | ||
Welcome to the X Components Archetype | ||
|
||
## What is this repository for? | ||
|
||
The purpose of this repository is to be the starting point to a customer setup using the X Components. | ||
Please take a look at the [documentation](./docs/index.md). | ||
The purpose of this repository is to be the starting point to a customer setup using the X | ||
Components. Please take a look at the [documentation](./docs/index.md). | ||
|
||
This repository uses [Standard Version](https://github.com/conventional-changelog/standard-version) | ||
for the versioning. Keep this in mind when you contribute to this project. Also remember to change | ||
the `header` variable in the `.vesionrc.js` file with the client's name if needed. | ||
|
||
If you want to contribute to this project please keep in mind that it uses | ||
[Conventional Commits](https://www.conventionalcommits.org/) for its commit messages and | ||
[commitizen](https://github.com/commitizen/cz-cli) as helping tool to generate the commits. Whenever | ||
you want to create a commit, run `npm run commit` and the commitizen wizard will guide you in | ||
writing the commit message. |
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,3 +1,3 @@ | ||
module.exports = { | ||
preset: '@vue/cli-plugin-unit-jest/presets/typescript' | ||
} | ||
}; |
Oops, something went wrong.