Skip to content

Commit

Permalink
Bug Fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Billy Meis <54307189+TheBillyIsMe@users.noreply.github.com>
  • Loading branch information
TheBillyIsMe committed Feb 1, 2021
1 parent d822061 commit 5b612a3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=false
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,19 @@ The ESLint Configuration used for Linting Thiradus' JavaScript projects.

## Installation

##### 1. Add the configuration as a dependency.
```Bash
npm install --save-dev eslint eslint-config-thiradus
```

##### 2. Add the following to your `.eslintrc.json`.
```JSON
{
"extends": "thiradus"
}

```

## License

This repository is licensed under the [MIT](./LICENSE.md) License &copy; 2015-2021 [Thiradus](https://github.com/Thiradus/)
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "eslint-config-thiradus",
"version": "1.0.0",
"version": "1.0.1",
"description": "The ESLint Configuration used for Linting Thiradus' JavaScript.",
"main": "index.js",
"repository": "https://github.com/Thiradus/eslint-config-thiradus",
"author": "Thiradus",
"license": "MIT",
"peerDependencies": {
"eslint": "^7.17.0",
"eslint-config-standard": "^16.0.2",
"dependencies": {
"eslint": "^7.19.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1"
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-standard": "^16.0.2",
"peerDependencies": {
"eslint": "^7.19.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1"
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0"
}
}

0 comments on commit 5b612a3

Please sign in to comment.