summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-09-24 08:06:05 +0000
committerMoonchild <moonchild@palemoon.org>2020-09-24 08:10:23 +0000
commit4a42352e6418b69e600422fc516ad1e74c708fa9 (patch)
tree579cf7c1c38df6a6a7fde0ade0e2ffc46b641423 /python
parent0c3bd2b10aa0e56ce5d950d90a1fe6ca11a0639a (diff)
downloaduxp-4a42352e6418b69e600422fc516ad1e74c708fa9.tar.gz
Issue #1656 - Part 8: Devtools and misc.
Diffstat (limited to 'python')
-rw-r--r--python/gdbpp/gdbpp/__init__.py1
-rw-r--r--python/gdbpp/gdbpp/linkedlist.py1
-rw-r--r--python/gdbpp/gdbpp/owningthread.py1
-rw-r--r--python/gdbpp/gdbpp/smartptr.py1
-rw-r--r--python/gdbpp/gdbpp/string.py1
-rw-r--r--python/gdbpp/gdbpp/tarray.py1
-rw-r--r--python/gdbpp/gdbpp/thashtable.py1
-rw-r--r--python/mozlint/test/linters/badreturncode.lint1
-rw-r--r--python/mozlint/test/linters/explicit_path.lint1
-rw-r--r--python/mozlint/test/linters/external.lint1
-rw-r--r--python/mozlint/test/linters/invalid_exclude.lint1
-rw-r--r--python/mozlint/test/linters/invalid_extension.lnt1
-rw-r--r--python/mozlint/test/linters/invalid_include.lint1
-rw-r--r--python/mozlint/test/linters/invalid_type.lint1
-rw-r--r--python/mozlint/test/linters/missing_attrs.lint1
-rw-r--r--python/mozlint/test/linters/missing_definition.lint1
-rw-r--r--python/mozlint/test/linters/raises.lint1
-rw-r--r--python/mozlint/test/linters/regex.lint1
-rw-r--r--python/mozlint/test/linters/string.lint1
-rw-r--r--python/mozlint/test/linters/structured.lint1
20 files changed, 0 insertions, 20 deletions
diff --git a/python/gdbpp/gdbpp/__init__.py b/python/gdbpp/gdbpp/__init__.py
index d20de23a72..1b9efbb84a 100644
--- a/python/gdbpp/gdbpp/__init__.py
+++ b/python/gdbpp/gdbpp/__init__.py
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
diff --git a/python/gdbpp/gdbpp/linkedlist.py b/python/gdbpp/gdbpp/linkedlist.py
index 966f9b9c03..60abfacb96 100644
--- a/python/gdbpp/gdbpp/linkedlist.py
+++ b/python/gdbpp/gdbpp/linkedlist.py
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
diff --git a/python/gdbpp/gdbpp/owningthread.py b/python/gdbpp/gdbpp/owningthread.py
index d102bef24c..3048c8e9d3 100644
--- a/python/gdbpp/gdbpp/owningthread.py
+++ b/python/gdbpp/gdbpp/owningthread.py
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
diff --git a/python/gdbpp/gdbpp/smartptr.py b/python/gdbpp/gdbpp/smartptr.py
index c352154263..02650f6606 100644
--- a/python/gdbpp/gdbpp/smartptr.py
+++ b/python/gdbpp/gdbpp/smartptr.py
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
diff --git a/python/gdbpp/gdbpp/string.py b/python/gdbpp/gdbpp/string.py
index 33d536a023..6bf7fcebbd 100644
--- a/python/gdbpp/gdbpp/string.py
+++ b/python/gdbpp/gdbpp/string.py
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
diff --git a/python/gdbpp/gdbpp/tarray.py b/python/gdbpp/gdbpp/tarray.py
index 66797e4c99..dae6b1b496 100644
--- a/python/gdbpp/gdbpp/tarray.py
+++ b/python/gdbpp/gdbpp/tarray.py
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
diff --git a/python/gdbpp/gdbpp/thashtable.py b/python/gdbpp/gdbpp/thashtable.py
index 10aee4946b..fb11f95cb3 100644
--- a/python/gdbpp/gdbpp/thashtable.py
+++ b/python/gdbpp/gdbpp/thashtable.py
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
diff --git a/python/mozlint/test/linters/badreturncode.lint b/python/mozlint/test/linters/badreturncode.lint
index 398d51a553..cd9cf9e3f7 100644
--- a/python/mozlint/test/linters/badreturncode.lint
+++ b/python/mozlint/test/linters/badreturncode.lint
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
diff --git a/python/mozlint/test/linters/explicit_path.lint b/python/mozlint/test/linters/explicit_path.lint
index 8c1a88a1fb..15663b2e7c 100644
--- a/python/mozlint/test/linters/explicit_path.lint
+++ b/python/mozlint/test/linters/explicit_path.lint
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
LINTER = {
'name': "ExplicitPathLinter",
diff --git a/python/mozlint/test/linters/external.lint b/python/mozlint/test/linters/external.lint
index dcae419dbf..41c16bc3fc 100644
--- a/python/mozlint/test/linters/external.lint
+++ b/python/mozlint/test/linters/external.lint
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
diff --git a/python/mozlint/test/linters/invalid_exclude.lint b/python/mozlint/test/linters/invalid_exclude.lint
index be6d0045cf..2d84144be1 100644
--- a/python/mozlint/test/linters/invalid_exclude.lint
+++ b/python/mozlint/test/linters/invalid_exclude.lint
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
LINTER = {
'name': "BadExcludeLinter",
diff --git a/python/mozlint/test/linters/invalid_extension.lnt b/python/mozlint/test/linters/invalid_extension.lnt
index 3cb8153a00..572897f7b8 100644
--- a/python/mozlint/test/linters/invalid_extension.lnt
+++ b/python/mozlint/test/linters/invalid_extension.lnt
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
LINTER = {
'name': "BadExtensionLinter",
diff --git a/python/mozlint/test/linters/invalid_include.lint b/python/mozlint/test/linters/invalid_include.lint
index 343d5e1950..02a1a77b95 100644
--- a/python/mozlint/test/linters/invalid_include.lint
+++ b/python/mozlint/test/linters/invalid_include.lint
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
LINTER = {
'name': "BadIncludeLinter",
diff --git a/python/mozlint/test/linters/invalid_type.lint b/python/mozlint/test/linters/invalid_type.lint
index 9e5926c5a5..3799b8fbc6 100644
--- a/python/mozlint/test/linters/invalid_type.lint
+++ b/python/mozlint/test/linters/invalid_type.lint
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
LINTER = {
'name': "BadTypeLinter",
diff --git a/python/mozlint/test/linters/missing_attrs.lint b/python/mozlint/test/linters/missing_attrs.lint
index 380512b640..aca63921d3 100644
--- a/python/mozlint/test/linters/missing_attrs.lint
+++ b/python/mozlint/test/linters/missing_attrs.lint
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
LINTER = {
'name': "MissingAttrsLinter",
diff --git a/python/mozlint/test/linters/missing_definition.lint b/python/mozlint/test/linters/missing_definition.lint
index a84b305d2a..f0208e7c6d 100644
--- a/python/mozlint/test/linters/missing_definition.lint
+++ b/python/mozlint/test/linters/missing_definition.lint
@@ -1,4 +1,3 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# No LINTER variable
diff --git a/python/mozlint/test/linters/raises.lint b/python/mozlint/test/linters/raises.lint
index f17e187337..e894f6f52f 100644
--- a/python/mozlint/test/linters/raises.lint
+++ b/python/mozlint/test/linters/raises.lint
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
diff --git a/python/mozlint/test/linters/regex.lint b/python/mozlint/test/linters/regex.lint
index 439cadf366..6bee56a0a0 100644
--- a/python/mozlint/test/linters/regex.lint
+++ b/python/mozlint/test/linters/regex.lint
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
LINTER = {
'name': "RegexLinter",
diff --git a/python/mozlint/test/linters/string.lint b/python/mozlint/test/linters/string.lint
index 46bf0e8b86..727507b0fd 100644
--- a/python/mozlint/test/linters/string.lint
+++ b/python/mozlint/test/linters/string.lint
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
LINTER = {
'name': "StringLinter",
diff --git a/python/mozlint/test/linters/structured.lint b/python/mozlint/test/linters/structured.lint
index e8be8d7b3a..1e16645819 100644
--- a/python/mozlint/test/linters/structured.lint
+++ b/python/mozlint/test/linters/structured.lint
@@ -1,5 +1,4 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.