https://github.com/mozilla/gecko-dev
Revision fc71eb18449cac634317c14f17ad421a95ef7edf authored by Mozilla Releng Treescript on 29 May 2024, 09:14:55 UTC, committed by Mozilla Releng Treescript on 29 May 2024, 09:14:55 UTC
br -> d00cb8760024caf0f84934077e566b61d737c137
cs -> ba7d58b38a83bbcd83a80d0d7f2097fc217b85ad
de -> 07130d144c99bdd0243d0e561085296cc374f1aa
en-GB -> 22b883ebca9ae1acfd89ff30d8e3f2e13a8faae4
es-AR -> 8506cf9e09a0b242ee723adce6e8aa3ff1ee306d
fy-NL -> 2e5173f9ffae2ba50fbfbdee0b0cd56ec97fdc94
is -> 495f3c8e5c60abdd3375794e9b6dc358b654bb1e
it -> 69306e6cff7284699f7284a6d162076f484d7142
ja -> 27324b94d13f45b2e693715b0c91fc46adb653b6
ja-JP-mac -> 5f4e800cf40ac0746452bf7f19b452f90bf91a8d
kk -> f53ed786aab283e226c71adbf4076595d4935645
ko -> 36a1b873ebeb28fcb73455aa80ea2a7e5d526c5a
nl -> 6319bea4f5382210b2b4188809fd64b8706270c7
ru -> 19146ecdace391d8d185770a7bfc54630b10e3d4
sat -> d40126f292cd32239d43161c251709c1e18bd768
sc -> da59b1c96f2d61b55cf16d2963cffdee154ebea6
sl -> bb29b6f75e590a0a14483ddf5879ae889a5b99e7
sv-SE -> 7f1030832f626ebd0d3b8895ca7873e33b566267
tg -> 26ee8bc1c2fb5dada2e64597d2e2845f861bedc4
zh-TW -> 982a98d375a2927b3dcc17635a08d0fe102c3eb7
1 parent ae1730f
Raw File
Tip revision: fc71eb18449cac634317c14f17ad421a95ef7edf authored by Mozilla Releng Treescript on 29 May 2024, 09:14:55 UTC
no bug - Bumping Firefox l10n changesets r=release a=l10n-bump
Tip revision: fc71eb1
.stylelintignore
# Please DO NOT add more third party files to this file.
# They should be added to tools/rewriting/ThirdPartyPaths.txt instead.
#
# Please also DO NOT add  generated files that are for some reason checked
# into source - add them to tools/rewriting/Generated.txt instead.

# This file should only be used for exclusions where we have:
# - preprocessed files
# - intentionally invalid files
# - build directories and other items that we need to ignore

# Always ignore node_modules.
**/node_modules/

# Always ignore crashtests - specially crafted files that originally caused a
# crash.
**/crashtest/
**/crashtests/
# Also ignore reftest - specially crafted to produce expected output.
**/reftest/
**/reftests/

# Exclude expected objdirs.
obj*/

# These files are generated in some way.
browser/components/pocket/content/panels/css/main.compiled.css
browser/components/newtab/**/*.css
browser/components/aboutwelcome/**/*.css
browser/components/asrouter/**/*.css

# Note that the debugger has its own stylelint setup, but that currently
# produces errors. Bug 1831302 tracks making this better
devtools/client/debugger/src/components/PrimaryPanes/Outline.css
devtools/client/debugger/src/components/PrimaryPanes/Sources.css
devtools/client/debugger/src/components/shared/AccessibleImage.css
devtools/client/debugger/src/utils/editor/source-editor.css
devtools/client/debugger/test/mochitest/examples/

# These get their sourcemap annotations autofixed, though they produce
# no errors at all.
devtools/client/inspector/rules/test/doc_sourcemaps.css

# Some of these produce parse errors, some have sourcemaps modified.
# They're tests, so let's just ignore all of them:
devtools/client/inspector/computed/test/doc_sourcemaps.css
devtools/client/inspector/rules/test/doc_invalid_sourcemap.css
devtools/client/shared/sourceeditor/test/css_statemachine_testcases.css
devtools/client/webconsole/test/browser/*.css

# Style editor tests check how it copes with invalid or "special" CSS,
# so don't try to "fix" those.
devtools/client/styleeditor/test/

# These are empty or have funky charsets
dom/base/test/bug466409-empty.css
dom/encoding/test/file_utf16_be_bom.css
dom/encoding/test/file_utf16_le_bom.css
dom/security/test/cors/file_cors_logging_test.html.css
dom/tests/mochitest/general/cssA.css
dom/tests/mochitest/general/cssC.css

# These are test-only and cause us to complain about font families or
# similar, but we don't want to touch these tests at this point.
dom/security/test/csp/file_CSP.css
dom/security/test/sri/style2.css
dom/xml/test/old/docbook.css
dom/xml/test/old/toc/book.css
dom/xml/test/old/toc/toc.css

# Tests we don't want to modify at this point:
layout/base/tests/stylesheet_change_events.css
layout/inspector/tests/bug856317.css
layout/inspector/tests/chrome/test_bug467669.css
layout/inspector/tests/chrome/test_bug708874.css
layout/style/test/gtest/example.css
layout/style/test/mapped2.css
layout/style/test/unstyled-frame.css

# Bug 1893763
mobile/android/android-components/components/feature/readerview/src/main/assets/extensions/readerview/readerview.css
# Three dashes at top of file (for Jekyll?) cause syntax error:
mobile/android/android-components/docs/assets/main.scss

# Empty test files:
netwerk/test/mochitests/test1.css
netwerk/test/mochitests/test2.css

# Has substitution gunk in it:
python/mozbuild/mozbuild/test/backend/data/build/foo.css

# This is third-party in a way:
toolkit/components/pdfjs/content/web/debugger.css
toolkit/components/pdfjs/content/web/viewer.css

# Ignore web-platform tests as they are not necessarily under our control.
testing/web-platform/tests/

back to top