summaryrefslogtreecommitdiffstats
path: root/lib/ansiblelint/rules/NoTabsRule.py
blob: 78222c8dca03c6f773b55afbfc3957ab37ab6823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (c) 2016, Will Thames and contributors
# Copyright (c) 2018, Ansible Project

from ansiblelint.rules import AnsibleLintRule


class NoTabsRule(AnsibleLintRule):
    id = '203'
    shortdesc = 'Most files should not contain tabs'
    description = 'Tabs can cause unexpected display issues, use spaces'
    severity = 'LOW'
    tags = ['formatting']
    version_added = 'v4.0.0'

    def match(self, file, line):
        return '\t' in line