Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
changed to use single quote
  • Loading branch information
Keyan Zhang committed Jul 24, 2016
commit 793a64ec4ce06b28d7c74025cf7238e5733cef30
2 changes: 1 addition & 1 deletion scripts/eject.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ prompt('Are you sure you want to eject? This action is permanent. [y/N]', functi

// explicitly specify ESLint config path for editor plugins
hostPackage.eslintConfig = {
extends: "./config/eslint.js",
extends: './config/eslint.js',
};

console.log('Writing package.json');
Expand Down
2 changes: 1 addition & 1 deletion scripts/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = function(hostPath, appName, verbose) {

// explicitly specify ESLint config path for editor plugins
hostPackage.eslintConfig = {
extends: "./node_modules/react-scripts/config/eslint.js",
extends: './node_modules/react-scripts/config/eslint.js',
};

fs.writeFileSync(
Expand Down