-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove default rails 5.2 support (#62) * Remove default rails 5.2 support * Limit rails support to what we test Signed-off-by: Gabriel Pereira <gabriel.pereira@powerhrg.com> * Add prettier as eslint-config dep Signed-off-by: Gabriel Pereira <gabriel.pereira@powerhrg.com> * Run prettier --write on eslint Signed-off-by: Gabriel Pereira <gabriel.pereira@powerhrg.com> * Export prettier config Signed-off-by: Gabriel Pereira <gabriel.pereira@powerhrg.com> * Run prettier on Github checks Signed-off-by: Gabriel Pereira <gabriel.pereira@powerhrg.com> * Don't encourage overrides Signed-off-by: Gabriel Pereira <gabriel.pereira@powerhrg.com> * Update documentations to include JS examples Signed-off-by: Gabriel Pereira <gabriel.pereira@powerhrg.com> * Improve package's doc to include Prettier Signed-off-by: Gabriel Pereira <gabriel.pereira@powerhrg.com> * Add missing extra line Co-authored-by: Ben Langfeld <ben@langfeld.me> Signed-off-by: Gabriel Pereira <gabriel.pereira@powerhrg.com> * Fix prettier offense on Readme Signed-off-by: Gabriel Pereira <gabriel.pereira@powerhrg.com> * Add eslint-config-prettier to ignore conflicting rules Adds the lib as a dependency so that clients can run `yarn eslint-config-prettier path/to/main.js` to check rules. * Add doc on how to spot conflicting rules * Run prettier on doc * Revert "Remove default rails 5.2 support (#62)" This reverts commit 037009f. --------- Signed-off-by: Gabriel Pereira <gabriel.pereira@powerhrg.com> Co-authored-by: Carlos Palhares <chjunior@gmail.com> Co-authored-by: Ben Langfeld <ben@langfeld.me>
- Loading branch information
1 parent
1c5e514
commit 3b4ba28
Showing
10 changed files
with
80 additions
and
26 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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.tmp | ||
node_modules/ | ||
**/*.d.ts | ||
**/*.d.ts.map |
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
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,8 +1,5 @@ | ||
module.exports = { | ||
extends: [ | ||
"@powerhome/eslint-config/base", | ||
"plugin:flowtype/recommended" | ||
], | ||
extends: ["@powerhome/eslint-config/base", "plugin:flowtype/recommended"], | ||
plugins: ["flowtype"], | ||
ignorePatterns: ["flow-typed/**/*"], | ||
} |
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,3 @@ | ||
module.exports = { | ||
semi: false, | ||
} |
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
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