Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Set 'root' in monorepo and create-project's .eslintrc.js (#825)
Browse files Browse the repository at this point in the history
Applies the #703 docs recommendation to our own .`eslintrc.js`'s too.
  • Loading branch information
edmorley committed Apr 27, 2018
1 parent 960f940 commit a0204bb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { Neutrino } = require('./packages/neutrino');

module.exports = Neutrino()
module.exports = Neutrino({ root: __dirname })
.use('.neutrinorc.js')
.call('eslintrc');
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { Neutrino } = require('neutrino');

module.exports = Neutrino()
module.exports = Neutrino({ root: __dirname })
.use('.neutrinorc.js')
.call('eslintrc');
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { Neutrino } = require('neutrino');

module.exports = Neutrino()
module.exports = Neutrino({ root: __dirname })
.use('.neutrinorc.js')
.call('eslintrc');
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { Neutrino } = require('neutrino');

module.exports = Neutrino()
module.exports = Neutrino({ root: __dirname })
.use('.neutrinorc.js')
.call('eslintrc');

0 comments on commit a0204bb

Please sign in to comment.