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
| /* Generated by Copilot */ | |
| /* Bootstrap 5-style Responsive Margin Utility Classes */ | |
| .m-0 { margin: 0 !important; } | |
| .m-1 { margin: 0.25rem !important; } | |
| .m-2 { margin: 0.5rem !important; } | |
| .m-3 { margin: 1rem !important; } | |
| .m-4 { margin: 1.5rem !important; } | |
| .m-5 { margin: 3rem !important; } |
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
| /* https://www.nordtheme.com/ */ | |
| :root { | |
| --nord0: #2e3440; | |
| --nord1: #3b4252; | |
| --nord2: #434c5e; | |
| --nord3: #4c566a; | |
| --nord4: #d8dee9; | |
| --nord5: #e5e9f0; | |
| --nord6: #eceff4; |
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
| *.exe | |
| *.lnk | |
| *.php | |
| *.pif | |
| *.scr | |
| *.bat | |
| *.com | |
| *.arj | |
| *.url | |
| *.txt |
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
| --- | |
| include: | |
| - "**/*.rb" | |
| exclude: | |
| - spec/**/* | |
| - test/**/* | |
| - vendor/**/* | |
| - ".bundle/**/*" | |
| require: [] | |
| domains: [] |
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
| # .eslintrc.yml | |
| env: | |
| browser: true | |
| es2021: true | |
| jquery: true | |
| extends: | |
| - standard | |
| parserOptions: | |
| ecmaVersion: latest |
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
| --- | |
| EnableDefaultLinters: true | |
| linters: | |
| ErbSafety: | |
| enabled: true | |
| better_html_config: .better-html.yml | |
| Rubocop: | |
| enabled: true | |
| rubocop_config: | |
| inherit_from: |
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
| linters: | |
| ConsecutiveComments: | |
| enabled: false | |
| IdNames: | |
| enabled: false | |
| ImplicitDiv: | |
| enabled: false | |
| severity: error | |
| InlineStyles: | |
| enabled: false |
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
| sudo apt-get update | |
| sudo apt-get install libjemalloc-dev | |
| RUBY_CONFIGURE_OPTS='--with-jemalloc' rbenv install 3.2.2 | |
| # test (look for jemalloc warnings) | |
| MALLOC_CONF=invalid_flag:foo ruby -v |
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
| # Brewfile - Homebrew Package Manager Configuration | |
| # | |
| # INITIAL SETUP (First time on a new Mac): | |
| # 1. Install Xcode Command Line Tools: | |
| # xcode-select --install | |
| # | |
| # 2. Install Homebrew: | |
| # /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| # | |
| # 3. Save this Brewfile to your home directory: |
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
| # Omakase Ruby styling for Rails | |
| inherit_gem: | |
| rubocop-rails-omakase: rubocop.yml | |
| # Your own specialized rules go here | |
| Layout/SpaceInsideArrayLiteralBrackets: | |
| Enabled: false | |
| Style/StringLiterals: | |
| Enabled: false |
NewerOlder