Files
SwiftLint/Tests/SwiftLintFrameworkTests/Resources/FileNameRuleFixtures/NSString+Extension.swift
T
JP Simard 24ec44d288 Add file_name opt-in rule
validating that file names contain the name of a
type or extension declared in the file (if any).
2018-05-11 22:17:39 -07:00

7 lines
77 B
Swift

struct MyStruct {}
class MyClass {}
extension NSString {
func asdf() {}
}