app
bin
config
db
docs
lib
assets
mastodon
paperclip
tasks
auto_annotate_models.rake
db.rake
mastodon.rake
statistics.rake
templates
log
nanobox
public
spec
storybook
streaming
vendor
.babelrc
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.yml
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.postcssrc.yml
.profile
.rspec
.rubocop.yml
.ruby-version
.scss-lint.yml
.slugignore
.travis.yml
Aptfile
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
ISSUE_TEMPLATE.md
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
boxfile.yml
config.ru
docker-compose.yml
docker_entrypoint.sh
package.json
scalingo.json
yarn.lock
08f8de84eb/Gemfile.lock (L38)
Code Climate is using RuboCop v0.46.0.
Change several rules to maintain compatibility.
46 lines
1.6 KiB
Ruby
46 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
if Rails.env.development?
|
|
task :set_annotation_options do
|
|
Annotate.set_defaults(
|
|
'routes' => 'false',
|
|
'position_in_routes' => 'before',
|
|
'position_in_class' => 'before',
|
|
'position_in_test' => 'before',
|
|
'position_in_fixture' => 'before',
|
|
'position_in_factory' => 'before',
|
|
'position_in_serializer' => 'before',
|
|
'show_foreign_keys' => 'false',
|
|
'show_indexes' => 'false',
|
|
'simple_indexes' => 'false',
|
|
'model_dir' => 'app/models',
|
|
'root_dir' => '',
|
|
'include_version' => 'false',
|
|
'require' => '',
|
|
'exclude_tests' => 'true',
|
|
'exclude_fixtures' => 'true',
|
|
'exclude_factories' => 'true',
|
|
'exclude_serializers' => 'true',
|
|
'exclude_scaffolds' => 'true',
|
|
'exclude_controllers' => 'true',
|
|
'exclude_helpers' => 'true',
|
|
'ignore_model_sub_dir' => 'false',
|
|
'ignore_columns' => nil,
|
|
'ignore_routes' => nil,
|
|
'ignore_unknown_models' => 'false',
|
|
'hide_limit_column_types' => 'integer,boolean',
|
|
'skip_on_db_migrate' => 'false',
|
|
'format_bare' => 'true',
|
|
'format_rdoc' => 'false',
|
|
'format_markdown' => 'false',
|
|
'sort' => 'false',
|
|
'force' => 'false',
|
|
'trace' => 'false',
|
|
'wrapper_open' => nil,
|
|
'wrapper_close' => nil
|
|
)
|
|
end
|
|
|
|
Annotate.load_tasks
|
|
end
|