canvas-lms/.selinimumignore

58 lines
985 B
Plaintext
Raw Normal View History

# these are things that selinimum can safely ignore when deciding whether
# the current commit needs to run all specs or just a subset
*.txt
*.md
*.png
*.jpg
*.gif
*.ico
*.svg
*.html
*.yml
*.example
*.ttf
*.woff
*.eot
*.sh
Revert and bring InstIcons into Canvas closes: CNVS-32953 This commit re-introduces Instructure Icons into Canvas. Due to the range in aesthetic impact of including both line and solid icons, the change is expansive and will be refined in subsequent commits. The purpose of this commit is to: - Make InstIcons available in Canvas allowing the use of the react components - Replace the current icon font with the new InstIcons font - Allow for use of both 'Line' and 'Solid' icon variants - Update the styleguide to reference the InstIcons github documentation for examples - Remove font custom from Canvas Icons changed to line versions in Canvas: - icon-compose (view on Dashboard card) - icon-info (view on global notification) - Updated icons to be larger for better visibility (our old font was using a small font size) - Updated font-size is now relative vs fixed, so better a11y Test Plan: - On compiling, icons in Canvas should now be changed to the corresponding Instructure Icons as can be seen here http://instructure.github.io/instructure-icons/ - The icon default displaying in Canvas should be solid icons. If the variant "icon-Line" is added to an icon's css class, it should display as line. For example, in the case of <i class="icon-edit"></i>, adding <i class="icon-edit icon-Line"></i> would result in a line version of the edit icon displaying - As a developer, you should be able to use InstUI react icons - The rake task `bundle exec rake icons:compile` should no longer exist - The styleguide should no longer display example icons, but should now include a link to the Instructure Icons github documentation Change-Id: I9780332de9fdf937b35caabadc2b2ee615892a43 Reviewed-on: https://gerrit.instructure.com/94175 Reviewed-by: Pam Hiett <phiett@instructure.com> QA-Review: Dan Sasaki Tested-by: Jenkins Product-Review: Kyle Follett <kfollett@instructure.com>
2016-11-02 04:04:45 +08:00
*.rubocop.yml
/.dockerignore
Revert and bring InstIcons into Canvas closes: CNVS-32953 This commit re-introduces Instructure Icons into Canvas. Due to the range in aesthetic impact of including both line and solid icons, the change is expansive and will be refined in subsequent commits. The purpose of this commit is to: - Make InstIcons available in Canvas allowing the use of the react components - Replace the current icon font with the new InstIcons font - Allow for use of both 'Line' and 'Solid' icon variants - Update the styleguide to reference the InstIcons github documentation for examples - Remove font custom from Canvas Icons changed to line versions in Canvas: - icon-compose (view on Dashboard card) - icon-info (view on global notification) - Updated icons to be larger for better visibility (our old font was using a small font size) - Updated font-size is now relative vs fixed, so better a11y Test Plan: - On compiling, icons in Canvas should now be changed to the corresponding Instructure Icons as can be seen here http://instructure.github.io/instructure-icons/ - The icon default displaying in Canvas should be solid icons. If the variant "icon-Line" is added to an icon's css class, it should display as line. For example, in the case of <i class="icon-edit"></i>, adding <i class="icon-edit icon-Line"></i> would result in a line version of the edit icon displaying - As a developer, you should be able to use InstUI react icons - The rake task `bundle exec rake icons:compile` should no longer exist - The styleguide should no longer display example icons, but should now include a link to the Instructure Icons github documentation Change-Id: I9780332de9fdf937b35caabadc2b2ee615892a43 Reviewed-on: https://gerrit.instructure.com/94175 Reviewed-by: Pam Hiett <phiett@instructure.com> QA-Review: Dan Sasaki Tested-by: Jenkins Product-Review: Kyle Follett <kfollett@instructure.com>
2016-11-02 04:04:45 +08:00
/.selinimumignore
/.stylelintrc
/app/stylesheets/brandable_variables.json
/app/stylesheets/components/_canvas-icons.scss
/bin
/config/environments/*
!/config/environments/test.rb
/doc
/docker-compose*
/Gemfile.d/development.rb
/gems/*/spec
/gems/dr_diff
/gems/rubocop-canvas
/gems/selinimum
/gems/tatl_tael
/guard
/Guardfile
/lib/data_fixup
/public/fonts
/public/javascripts/.xssignore
/public/javascripts/translations/_core_en.js
/script
/webpack.production.config.babel.js
# ignore all specs and spec-related things, except selenium specs and things
# that can affect them
/spec/*
!/spec/factories
!/spec/helpers
!/spec/selenium
!/spec/support
!/spec/*.rb
# ** so we unignore previously ignored .txt, etc.
!/spec/fixtures/**