unsafe-browser vs XWayland
[tails.git] / features / .rubocop.yml
blob0a15dcb437c82288dd46702cc6a849bb5fe650f1
1 inherit_from: ../.rubocop.yml
3 Metrics/BlockLength:
4   ExcludedMethods:
5     # Cucumber
6     - 'Given'
7     - 'When'
8     - 'Then'
9     - 'But'
10     - 'After'
11     - 'AfterConfiguration'
12     - 'Before'
13     - 'BeforeFeature'
15 Naming/VariableName:
16   EnforcedStyle: snake_case
17   Enabled: false
19 Style/GlobalVars:
20   Description: Our test suite relies heavily on this design pattern.
21   Enabled: false