This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Require the REPL module | |
// and models | |
const repl = require('repl').start({}) | |
const models = require('./models') | |
// Make the `models` object | |
// a global variable in the | |
// REPL | |
repl.context.models = models |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git push origin local-name:remote-name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": ["react-app", "eslint:recommended"], | |
"rules": { | |
"array-bracket-spacing": [1, "never"], | |
"arrow-spacing": 1, | |
"brace-style": 1, | |
"camelcase": 1, | |
"comma-dangle": 1, | |
"comma-spacing": 1, | |
"comma-style": 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
inherit_gem: | |
rubocop-rails_config: | |
- config/rails.yml | |
Style/FrozenStringLiteralComment: | |
Enabled: false | |
Style/StringLiterals: | |
EnforcedStyle: single_quotes |