Skip to content

Commit

Permalink
configs
Browse files Browse the repository at this point in the history
  • Loading branch information
TateB committed Aug 4, 2022
1 parent 0af68b7 commit 016043f
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 13 deletions.
28 changes: 25 additions & 3 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
.yarn
.yalc
yarn.lock
.next
node_modules
pnpm-lock.yaml
LICENSE

archives
artifacts
cache
coverage
data
ganache
out
artefacts
subgraphs

e2e/screenshots
e2e/videos

patches

*.png
*.ico
*.otf
*.ttf
*.woff
*.woff2
*.sh
*.properties
2 changes: 1 addition & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"arrowParens": "always",
"endOfLine": "lf",
"printWidth": 120,
"printWidth": 100,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
Expand Down
6 changes: 1 addition & 5 deletions e2e/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
const { findPnpApi } = require('module')
const pnp = findPnpApi('./')
const synpressPath = pnp.resolveToUnqualified('@synthetixio/synpress', './')

module.exports = {
extends: `${synpressPath}/.eslintrc.js`,
extends: '../node_modules/@synthetixio/synpress/.eslintrc.js',
}
5 changes: 1 addition & 4 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,4 @@ const sentryWebpackPluginOptions = {
// https://github.com/getsentry/sentry-webpack-plugin#options.
}

module.exports = withSentryConfig(
withPlugins(plugins, nextConfig),
sentryWebpackPluginOptions,
)
module.exports = withSentryConfig(withPlugins(plugins, nextConfig), sentryWebpackPluginOptions)

0 comments on commit 016043f

Please sign in to comment.