-
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.
Merge pull request #61 from pactsafe/next
v2.8.0 Release - Support Custom Data and Custom acceptanceLanguage, Update Dependencies
- Loading branch information
Showing
11 changed files
with
27,303 additions
and
43,200 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,18 @@ | ||
{ | ||
"extends": [ | ||
"airbnb" | ||
], | ||
"rules": { | ||
"import/no-extraneous-dependencies": "off", //don't want to load react-dom in on other's npm install, so keeping as devDependency | ||
"no-console": "off", // for the demo page we want to keep console.logs to show triggered events | ||
"no-alert": "off", // same for alerts | ||
"react/jsx-filename-extension": "off", | ||
"jsx-a11y/label-has-associated-control": [ | ||
2, | ||
{ | ||
"assert": "either", | ||
"controlComponents": [ | ||
"Form.Field" | ||
], | ||
"depth": 3 | ||
} | ||
], | ||
"jsx-a11y/label-has-for": "off", | ||
}, | ||
} | ||
{ | ||
"extends": ["airbnb"], | ||
"rules": { | ||
"import/no-extraneous-dependencies": "off", //don't want to load react-dom in on other's npm install, so keeping as devDependency | ||
"no-console": "off", // for the demo page we want to keep console.logs to show triggered events | ||
"no-alert": "off", // same for alerts | ||
"react/jsx-filename-extension": "off", | ||
"jsx-a11y/label-has-associated-control": [ | ||
2, | ||
{ | ||
"assert": "either", | ||
"controlComponents": ["Form.Field"], | ||
"depth": 3 | ||
} | ||
], | ||
"jsx-a11y/label-has-for": "off" | ||
} | ||
} |
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,3 +1,4 @@ | ||
module.exports = require('babel-jest').createTransformer({ | ||
presets: ['env', 'react', 'stage-1'], | ||
presets: ['@babel/preset-env', '@babel/preset-react'], | ||
plugins: ['@babel/plugin-proposal-export-default-from'] | ||
}); |
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
Oops, something went wrong.