Skip to content

Commit

Permalink
Merge pull request #272 from researchdata-sheffield/development
Browse files Browse the repository at this point in the history
refactor: move data for visualisations out of production build

Close #269
  • Loading branch information
yld-weng authored Apr 14, 2022
2 parents d66296b + 6131366 commit 57f529e
Show file tree
Hide file tree
Showing 32 changed files with 664 additions and 402,465 deletions.
42 changes: 0 additions & 42 deletions .eslintrc

This file was deleted.

40 changes: 40 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"babelOptions": {
"presets": ["babel-preset-gatsby"]
}
},
"rules": {
"strict": 0
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:import/recommended"
],
"settings": {
"react": {
"version": "detect"
},
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"],
"paths": ["./src"]
},
"eslint-import-resolver-custom-alias": {
"alias": {
"@utils": "./src/utils"
},
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
}
}
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ Although the scope is optional but it is recommended to include the scope so tha
- `fix(no-release): responsive issue for xxx`
- the `no-release` scope will not trigger a release

For breaking changes, add `!` after `<type>(Scope)` or add `BREAKING CHANGE: description.`/`BREAKING CHANGES: description.`

## <a name="website"></a> Contribute to the core website

This website is built from <a href="https://www.gatsbyjs.org/">Gatsby</a> framework.
Expand Down
Loading

0 comments on commit 57f529e

Please sign in to comment.