Skip to content

Commit

Permalink
fix: linting check on azure/appveyor (#9781)
Browse files Browse the repository at this point in the history
seems like current (bit whacky) patterns don't play nice on windows for some reason, let's try different ones

note - there is currently unrelated lint error in `www` so linting should fail - but it should have 1 error instead of thousands of errors on azure/appveyor - with this #9780 should be clear
  • Loading branch information
pieh committed Nov 7, 2018
1 parent 830ec51 commit e2fdb87
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitattributes
@@ -1,3 +1,4 @@
**/*.js.snap text eol=lf
**/__testfixtures__/** text eol=lf
**/__tests__/fixtures/** text eol=lf
**/*.md text eol=lf
7 changes: 4 additions & 3 deletions .prettierignore
Expand Up @@ -16,9 +16,10 @@ www/public
**/.cache

# ignore built packages
packages/*/*.js
packages/gatsby/cache-dir/commonjs
packages/gatsby/dist
packages/**/*.js
!packages/gatsby/cache-dir/**/*.js
!packages/*/src/**/*.js
packages/gatsby/cache-dir/commonjs/**/*.js

# fixtures
**/__testfixtures__/**
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -535,7 +535,7 @@ API changes:
- The default layout component should be at `layouts/index.js` not
`layouts/default.js`
https://github.com/gatsbyjs/gatsby/pull/940#issuecomment-300537162
- `this.props.children` in layout components is now a _function_
- `this.props.children` in layout components is now a function
https://github.com/gatsbyjs/gatsby/pull/940#issuecomment-300878300
- Change the default port for serve-build to 9000
- Change the path to GraphiQL to `/___graphql`
Expand Down

0 comments on commit e2fdb87

Please sign in to comment.